home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eointerface / EOTextAssociation.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-26  |  407 b   |  23 lines

  1. // EOTextAssociation.h
  2. // Enterprise Objects Framework
  3. // Copyright (c)1993, NeXT Computer, Inc. All rights reserved.
  4.  
  5. #ifdef SHLIB
  6. #import "shlib.h"
  7. #endif
  8.  
  9. #import "EOAssociation.h"
  10.  
  11. @class Window;
  12.  
  13. @interface EOTextAssociation: EOAssociation
  14. {
  15.     id _lastValue;
  16.     struct {
  17.         int didChange:1; // has the text changed since the last AsscocDidEdit?
  18.     int resigningResponder:1;
  19.     } _flags;
  20. }
  21.  
  22. @end
  23.